home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / If.au3 < prev    next >
Text File  |  2007-09-08  |  135b  |  8 lines

  1. ;Terminates script if no command-line arguments
  2. If $CmdLine[0] = 0 Then Exit
  3.  
  4. ;Alternative:
  5. If $CmdLine[0] = 0 Then
  6.     Exit
  7. EndIf
  8.